TTP229 16 4x4 Digital Keypad Touch Sensor Capacitive Switch Module Arduino PIC
-
RM18.00
- Product Code: TTP229
- Availability: In Stock
This is ttp229 16 way capacitive touch switch digital touch sensor keypad module. This capacitive touch sensor module uses the ttp229 integrated circuit, making it easy to add capacitive touch input to your project. It features 16 sensitive touchpads that make an ideal replacement for the old fashioned keypads.
Features & Details:
Module Pinout:
This module has 12 pins:
Code for 8 Key Mode:
void setup(){
for(int x=2;x<10;x++)
pinMode(x,INPUT);
Serial.begin(9600);
}
void loop(){
for(int y=2;y<10;y++){
if (digitalRead(y)==HIGH)
Serial.println(y-1);
}
}